home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / psettime.sql < prev    next >
Text File  |  2000-05-12  |  1KB  |  25 lines

  1. /* RCSVER $Id: psettime.sql,v 1.1 1999-03-15 10:21:11-06 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        psettime.sql
  6. * Date:        03/05/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the psettime table. psettime contains information     
  9. *        about probe set times from the PROBE_SET_TIME record.
  10. * Changes:
  11. ************************************************************************* */
  12. CREATE TABLE psettime
  13. (
  14.     det_seq_num    NUMBER(38)    /* pointer to mstrrec record */
  15.         CONSTRAINT ref1_psettime REFERENCES mstrrec(det_seq_num),
  16.     farebox_glid    NUMBER(38),    /* Farebox ID from global_id */
  17.         conv_date       DATE,           /* Date for this record */
  18.     su_date        DATE,        /* Date/time of probe time set */
  19.     su_dow        NUMBER(1),    /* day of week (0-6) */
  20.     su_tz        NUMBER(38),    /* timezone */
  21.     su_isdst    NUMBER(1),    /* Is this daylight savings time? */
  22.     sec_diff    NUMBER(38),    /* Difference from old to new time */
  23.     CONSTRAINT pk_psettime PRIMARY KEY (det_seq_num)
  24. );
  25.